os.fileStat.mode (field)

12 uses

	os (current package)
		stat_linux.go#L16: 	fs.mode = FileMode(fs.sys.Mode & 0777)
		stat_linux.go#L19: 		fs.mode |= ModeDevice
		stat_linux.go#L21: 		fs.mode |= ModeDevice | ModeCharDevice
		stat_linux.go#L23: 		fs.mode |= ModeDir
		stat_linux.go#L25: 		fs.mode |= ModeNamedPipe
		stat_linux.go#L27: 		fs.mode |= ModeSymlink
		stat_linux.go#L31: 		fs.mode |= ModeSocket
		stat_linux.go#L34: 		fs.mode |= ModeSetgid
		stat_linux.go#L37: 		fs.mode |= ModeSetuid
		stat_linux.go#L40: 		fs.mode |= ModeSticky
		types_unix.go#L18: 	mode    FileMode
		types_unix.go#L24: func (fs *fileStat) Mode() FileMode     { return fs.mode }